home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1998
/
MacHack 1998.toast
/
The Hacks!
/
Transport Independent Speech
/
SpokenSerialApp
/
Speaking.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-11-16
|
327 b
|
16 lines
|
[
TEXT/CWIE
]
#ifndef __SPEAKING__
#include "Speaking.h"
#endif
OSErr GetNewSpeechChan (const SpeechChannel * const theSpeechChan)
{
OSErr theErr = noErr;
theErr = NewSpeechChannel (nil, theSpeechChan);
if (theErr != noErr || theSpeechChan == nil) {
DebugStr ("\pGetNewSpeechChan (NewSpeechChannel) error");
}
return theErr;
}